Home Page (Default.aspx)

homePage.PNG
Above is a screenshot of the current home page that appears when site is opened. I added a link to external weather service to add weather to the RightContentContainer (code below).
<asp:Content ID="RightContent" ContentPlaceHolderID="RightContent" runat="server">
    <div id="weather">
        <a href="http://www.weatherforyou.com/weather/georgia/warner+robins.html">
        <img src="http://www.weatherforyou.net/fcgi-bin/hw3/hw3.cgi?config=png&forecast=hourly&alt=hwihourly&place=warner+robins&state=ga&country=us&hwvbg=white&hwvtc=FF9900&hwvdisplay=" alt="Latest Warner Robins, Georgia, weather"/></a>
        <br />
    </div>
The Default.aspx page inherits the master page via linking Barnes.Master to the MasterPageFile in the page header.
<%@ Page Title="" Language="C#" MasterPageFile="~/Barnes.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="timbarnesengineering.Default" %>
Since the website is still being develop, I added a cool picture telling any potential customer that the site is not functioning yet. This was handled by added the image to the MainContentContainer (code below).
<asp:Content ID="MainContent" ContentPlaceHolderID="MainContent" runat="server">
 <div style="position: relative; width:auto; margin-left:0px; margin-right:auto">
    <asp:Image ID="UnderConstruct" runat="server" Height="532px"
        ImageUrl="~/Images/underconstruction.gif" Width="642px" />
 </div>
</asp:Content>